http://tecadmin.net/download-upload-files-using-ftp-command-line/
FTP (File Transfer Protocol) is the most popular protocol to transfer files (download and upload) from one system to other system. It provides the fastest way transfer files. There are many application available on Linux and windows to FTP services like vsftpd, proftpd for Linux, FileZilla Server for windows.
There are various ways to connect to ftp server, Also you can find multiple free tools on internet to work with ftp. But system admins know the power of command line. This article will help you to how to connect to FTP server using command line and Download and Upload Files using FTP protocol between FTP server local system.
To connect to any FTP server from windows open its command prompt and for Linux open terminal window. Now you have required IP or Hostname of FTP server and login credentials to connect with specific user.
c:> ftp ftp.tecadmin.net
To upload file on FTP server use put command from ftp prompt. First navigate to desired directory on ftp server where to upload file and use following command. It will upload local system file c:filesfile1.txt to uploads directory on ftp server.
ftp> cd uploads ftp> put c:filesfile1.txt
To download file from FTP server, we use get command. Using that command we can download one time at a time. To download any file from ftp server, first login to your ftp server, navigate to directory and use following command to download
ftp> get file1.txt
To upload multiple files to FTP server we use mput command from ftp prompt. We can specify wild card character to upload multiple files to server at a time. First navigate to desired directory on ftp server where to upload file and use following command. It will upload local system files with .txt extension in c:files directory to uploads directory on ftp server.
ftp> cd uploads ftp> lcd c:files ftp> put *.txt
To download multiple files from FTP server, we use mget command. Using that command we can download more than one files at a time. To download multiple files specify wild card character for specify directory name do download all files from directory.
ftp> mget *.txt
library(RCurl) ftpUpload("Localfile.html", "ftp://User:Password@FTPServer/Destination.html")
system("ftp ...") # where ... is the argument list